home *** CD-ROM | disk | FTP | other *** search
/ Everything For A Hacker / 19990506-[HACK].iso / ANTIVIR / nav / NAVDOSWN / NETUSER.INF < prev    next >
INI File  |  1998-05-21  |  23KB  |  814 lines

  1.  
  2. ;**************************************************************************
  3. ;* Norton AntiVirus 4.0 Install Script                                    *
  4. ;**************************************************************************
  5.  
  6. [InstallVersion]
  7. 4.0
  8.  
  9. [WindowsVersion]
  10. 3.10
  11. "The Norton AntiVirus Install"
  12. "requires Microsoft Windows version 3.1"
  13. "or greater."
  14.  
  15. [Process]
  16. AllowIntlChars()
  17.  
  18. SetActiveCopy(CopyWorkstation, install.inf)
  19.  
  20. EnableTestPaths()
  21.  
  22. DisableHelp()
  23.  
  24. Backup(CopyInstallStuff1)
  25.  
  26.  
  27. CallProc(SIWLoadSIWCustDLL)
  28.  
  29. CallProc(WaitLoading)
  30.  
  31. Backup(CopyInstallStuff2)
  32.  
  33. CallProc(RemoveWaitLoading)
  34.  
  35. CallProc(SIWFreeSIWCustDLL)
  36.  
  37.                                         ; Assume versions > 3.20 are 95/NT
  38. switch14 = CallProcEx(SIWIsWin32)
  39.  
  40. #if(switch14)
  41.     MessageBox(MessageUse32Bit)
  42.     Delete(DelLeftovers)
  43.     Delete(DelSiwcust)
  44.     Exit()
  45. #endif
  46.  
  47. switch64 = IsSilentMode()
  48. #ifnot (switch64)
  49. switch66 = CallProcEx(SIWIsNav3Running)
  50. #if (switch66)
  51.     MessageBox(MessageNav3Running)
  52. ;    Delete(DelLeftovers)
  53. ;    Exit()
  54. #endif
  55. #endif
  56.  
  57. ; Is the user registered with a previous version?  If we do not find
  58. ; registration information, then prompt him for it.
  59. switch15 = IsRegistered()
  60. #ifnot (switch15)
  61.    Registration()
  62. #endif
  63.  
  64. ; Check to see if we are the current Windows Shell.
  65. switch60 = IsInstallShell()
  66.  
  67. :ConfigSel
  68.  
  69. ResetTarget(InitTarget)
  70.  
  71. CallProcEx(SIWGetNavPath)
  72.  
  73. ; He wants to choose where to install the NAVW program.
  74. switch55 = PathBrowse(BrowseNAVW)
  75.  
  76. #ifnot (switch55)
  77.    MessageBox(ByeCancelInstall)
  78.    Delete(DelLeftovers)
  79.    Delete(DelSiwcust)
  80.    Exit()
  81. #endif
  82.  
  83. CallProc(SIWTargetToFull)
  84.  
  85. #ifnot (switch64)
  86. switch65 = CheckDiskSpace(TARGET)
  87.  
  88. #ifnot (switch65)
  89.    DiskSpaceError(NoSpace)
  90. ;  switch 95 is the first radio button ('change drive'). Where are the docs?
  91.    #if (switch95)
  92.         goto(ConfigSel)
  93.    #endif
  94. #endif
  95.  
  96. switch68 = CallProcEx(SIWIsNavDir)
  97.  
  98. #if (switch68)
  99.    switch68 = MessageYesNo(MessageOverwriteOldNAV)
  100.    #ifnot (switch68)
  101.        goto(ConfigSel)
  102.    #endif
  103. #endif
  104. #endif
  105.  
  106. switch75 = CallProcEX(SIWIsNetscapeInstalled)
  107. #if (switch75)
  108. #ifnot (switch64)
  109.    switch66 = MessageYesNo(MessageUpdateIni)
  110. #else
  111.    switch66 = TRUE
  112. #endif
  113.    #if (switch66)
  114.    CallProcEx(SIWModifyNetscapeIni)
  115.    #endif
  116. #endif
  117.  
  118. ; Scan for Viruses
  119. CallProc(dovirus)
  120.  
  121. switch70 = CallProcEx(SIWIsNavDir)
  122. #ifnot (switch70)
  123. CallProc(IncreaseLiveUpdateCount)
  124. #endif
  125.  
  126. CreateDirectory(CreateDirNAVW)
  127.  
  128. ResetTarget(SetupLocation)
  129.  
  130. CallProc(SetSystemTarget)
  131.  
  132. ; Copy items to where they need to go.
  133. Copy()
  134.  
  135. UpdateIni(UpdWizardInfo)
  136.  
  137. ; Set the user's registration information
  138. CallProc(SIWSetRegInfo)
  139.  
  140. ; Set Paths for Live Update files and nav defs in liveupdt.ini
  141. CallProc(SIWModifyLiveUpdateIni)
  142.  
  143. ; Set the path for Windows Applications in case Windows is in
  144. ; shared (network) directory.
  145. CallProc(SIWGetWindowsAppPath)
  146.  
  147. ; Set up Groups in Windows Shell Program
  148. Groups()
  149.  
  150. DelFromIni(DelOldSymevent)
  151. AddToIni(SYMEVENT)             ;add device=symevnt.386 to system.ini
  152.  
  153. CallProcEx(HandleSYMEvnt)
  154. CallProcEx(HandleRMLodHi)
  155. UpdateIni(AutoProtect)
  156.  
  157. #ifnot (switch64)
  158. switch72 = MessageYesNo(AutomaticLiveUpdateMsg)
  159. #else
  160. switch72 = TRUE;
  161. #endif
  162. #if (switch72)
  163.    UpDateIni(AutomaticLiveUpdate)
  164. #else
  165.    UpDateIni(AutomaticLiveUpdateNo)
  166. #endif
  167.  
  168.  
  169. #ifnot (switch64)
  170. switch73 = MessageYesNo(UpdateConfigsMsg)
  171. #else
  172. switch73 = TRUE
  173. #endif
  174. #if (switch73)
  175.    Backup(BackupConfigFiles)
  176.    SilentModifyTF(ModifyConfigSys)
  177.    SilentModifyTF(ModifyConfigSys2)
  178.    SilentModifyTF(ModifyAutoexec)
  179.    CallProc(SIWAddNavToPath)
  180. #endif
  181.  
  182.  
  183. ; Delete our temp setup files.
  184. Delete(DelLeftovers)
  185.  
  186. #ifnot (switch64)
  187. ExecChildProcess(LaunchRescue)
  188. #endif
  189.  
  190. ; Needed for LaunchRescue
  191. Delete(DelSiwcust)
  192.  
  193. ; Exit the install program based on if we are the shell or not.
  194.  
  195. #if (switch73)
  196. #ifnot (switch64)
  197.     switch75=MessageCancel(ByeReboot)
  198. #else
  199.     switch75 = TRUE
  200. #endif
  201.  
  202.     #if (switch75)
  203.         ExitReboot()
  204.     #else
  205.         Exit()
  206.     #endif
  207. #else
  208. #ifnot (switch64)
  209.     switch75=MessageCancel(ByeNoReboot)
  210. #else
  211.     switch75 = TRUE
  212. #endif
  213.  
  214.     #if (switch75)
  215.         ExitRestart()
  216.     #else
  217.         Exit()
  218.     #endif
  219.  
  220. #endif
  221.  
  222.  
  223. ;**************************************************************************
  224. ;* Set Shell section                                                      *
  225. ;**************************************************************************
  226.  
  227. [SetShell]
  228. ;AppIniName      = nav.ini
  229. WinIniName      = win.ini
  230. SystemIniName   = system.ini
  231. Message         = MessageBox.SetShellMessage
  232. SysSectionName  = boot
  233. WinSectionName  = windows
  234. shell           = %s\setup.exe
  235. load            =
  236. run             =
  237. SetShellIfLoaded=
  238. Backup          = Backup.SetShellSave
  239. Restore         = Backup.SetShellRestore
  240. Active          = No
  241. IfActiveList    =
  242. SubProcess      =
  243.  
  244. [SetShellSave]
  245. win.ini,    win.$nn,    WINDOWS
  246. system.ini, system.$nn, WINDOWS
  247.  
  248. [SetShellRestore]
  249. system.$nn, system.ini, WINDOWS
  250. win.$nn,    win.ini,    WINDOWS
  251.  
  252. [SetShellMessage]
  253. caption = "Norton AntiVirus -- Install"
  254. "Welcome to the Norton AntiVirus"
  255. "install program.  Please press OK to allow"
  256. "Install to restart Windows and continue the"
  257. "installation.  Press Cancel to exit."
  258.  
  259.  
  260. ;**************************************************************************
  261. ;* Install setup stuff.                                                   *
  262. ;**************************************************************************
  263. [CopyInstallStuff1]
  264. siwadvo.dll,  siwadvo.dll,  SOURCE, WINDOWS
  265. siwcust.dll,  siwcust.dll,  SOURCE, WINDOWS
  266. siwgt16.dll,  siwgt16.dll,  SOURCE, WINDOWS
  267. siwgt32.dll,  siwgt32.dll,  SOURCE, WINDOWS
  268.  
  269. [CopyInstallStuff2]
  270. q_sinst.dll, q_sinst.dll, SOURCE, WINDOWS
  271. q_virscn.dll,  q_virscn.dll,  SOURCE, WINDOWS
  272. virscan.dat,  virscan.dat,  SOURCE, WINDOWS
  273. virscan2.dat,  virscan2.dat,  SOURCE, WINDOWS
  274. virscan.inf,  virscan.inf,  SOURCE, WINDOWS
  275. siwvscan.dll, siwvscan.dll, SOURCE, WINDOWS
  276. q_krnl.dll, q_krnl.dll, SOURCE, WINDOWS
  277. q_gui.dll, q_gui.dll, SOURCE, WINDOWS
  278. q_util.dll, q_util.dll, SOURCE, WINDOWS
  279. navex16.dll, navex16.dll, SOURCE, WINDOWS
  280.  
  281.  
  282.  
  283. ;**************************************************************************
  284. ;* Copy                                                                   *
  285. ;**************************************************************************
  286.  
  287. [CopyWorkstation]
  288. ;seltype.component, description,                                size,req,files,show
  289. CopyMain.BaseFiles, "Norton AntiVirus",          0,   Y,  N,    N
  290.  
  291. [CopyWorkstation:CopyDialog]
  292. caption = "Copying Files..."
  293. posx = -10
  294. posy = -10
  295.  
  296. [CopyWorkstation:Advo]
  297. x-position = 5
  298. y-position = 5
  299. location   = siwadvo.dll
  300. count      = 3
  301.  
  302. [AdvoDefault]
  303. posx = 20
  304. posy = 80
  305. text = AdvoText
  306.  
  307. [AdvoText]
  308. "Be sure to fill out your registration"
  309. "card.  This will allow Symantec to contact"
  310. "you about future product updates."
  311.  
  312. ;**************************************************************************
  313. ;* Not enough disk space                                                  *
  314. ;**************************************************************************
  315.  
  316. [NoSpace]
  317. caption = "Insufficient Disk Space"
  318. radio1 = "Change &Drive"
  319. radio2 = "&Continue Installation"
  320. descrip1 = "Choose this option to change the installation drive to another drive with more space available."
  321. descrip2 = "This option may result in an incomplete installation.  We recommend that you choose the other option or exit the install and delete files."
  322. AllowContinue = 0
  323.  
  324.  
  325. ;**************************************************************************
  326. ;* Groups                                                                 *
  327. ;**************************************************************************
  328.  
  329. [Groups]
  330. "Norton AntiVirus",             nav40.grp
  331.  
  332. [Norton AntiVirus]
  333. "Norton AntiVirus",           navw.exe,   BaseFiles, ,TARGET
  334. "Norton Scheduler",               schedule.exe,   BaseFiles, ,TARGET
  335. "Norton AntiVirus Auto-Protect",   navtsrw.exe,   BaseFiles, ,TARGET
  336. "Create Rescue Disks",   rescuew.exe,   BaseFiles, ,TARGET
  337. "View Readme",   notepad.exe,   BaseFiles, ,TARGET1, , TARGET, "readme.txt", TARGET
  338. "Help with LiveUpdate",   notepad.exe,   BaseFiles, ,WINDOWS, , TARGET1, "modemhlp.txt", TARGET
  339. "Norton AntiVirus On-line Help",   winhelp.exe,   BaseFiles, ,WINDOWS, , TARGET1, "navw.hlp", TARGET
  340.  
  341.  
  342. ;**************************************************************************
  343. ;* Dialogs/Message box text                                               *
  344. ;**************************************************************************
  345.  
  346. [ByeNoReboot]
  347. caption = "Norton AntiVirus -- Install Complete"
  348. ""
  349. "This concludes the installation of Norton "
  350. "AntiVirus. Please click on the 'View Readme'"
  351. "icon to review the README.TXT file for "
  352. "late-breaking news and usage tips."
  353. ""
  354. "In order to reset the Windows environment, Install needs to restart Windows."
  355. ""
  356. "Select OK to restart Windows now.  Select CANCEL to exit without restarting Windows."
  357.  
  358. [ByeReboot]
  359. caption = "Norton AntiVirus -- Install Complete"
  360. ""
  361. "This concludes the installation of "
  362. "Norton AntiVirus. Please review the"
  363. "README.TXT file for last minute updates "
  364. "to the documentation."
  365. ""
  366. "In order for changes to startup files to take effect, Norton AntiVirus Install needs to reboot your machine."
  367. ""
  368. "Select OK to reboot now.  Select CANCEL to exit without rebooting."
  369.  
  370. [ByeCancelInstall]
  371. caption = "Norton AntiVirus"
  372. "You have cancelled the installation"
  373. "of Norton AntiVirus."
  374.  
  375. [ByeNoSel]
  376. caption = "Norton AntiVirus"
  377. ""
  378. ""
  379. "Because no items were selected for"
  380. "installation, this may be an incomplete"
  381. "install of Norton AntiVirus"
  382.  
  383. [ExitMessage]
  384. caption = "Norton AntiVirus"
  385. "Because no items were selected for"
  386. "installation, this may be an incomplete"
  387. "install of Norton AntiVirus"
  388. ""
  389. "Press OK to return to your Windows session."
  390.  
  391. [Errors]
  392. noprev  =  "Symantec Install for Windows is already running!"
  393.  
  394. [FileCopy]
  395. copycaption   =  "Norton AntiVirus -- Install"
  396. errorcaption  =  "Error Copying Files"
  397. insertcaption =  "Insert Diskette"
  398. Message    = MessageText
  399.  
  400. [Cancel]
  401. caption = "Norton AntiVirus -- Install"
  402. text   = "Are you sure you want to exit?"
  403.  
  404. [CancelShell]
  405. caption = "Norton AntiVirus -- Install"
  406. text = "When you cancel Install, Windows will exit so that we can reset the Windows environment."
  407.        "Are you sure you want to exit?"
  408.  
  409. [AutomaticLiveUpdateMsg]
  410. caption = "Norton AntiVirus"
  411.  
  412. text = "Norton AntiVirus includes LiveUpdate, a feature"
  413.        "that can update your virus protection monthly. "
  414.        "To use LiveUpdate, you must have a properly "
  415.        "configured modem and/or Internet connection."
  416.        ""
  417.        "Would you like to launch LiveUpdate"
  418.        "automatically to get updates for your virus"
  419.        "protection each month?"
  420.  
  421.  
  422. [UpdateConfigsMsg]
  423. caption = "Norton AntiVirus Setup"
  424. text = "Norton AntiVirus Setup needs to modify"
  425.        "your startup files.  Please refer to the"
  426.        "README.TXT file for details on the required"
  427.        "changes."
  428.        ""
  429.        "Choose Yes to have setup make the
  430.        "modification and save your old CONFIG.SYS"
  431.        "and AUTOEXEC.BAT as CONFIG.NAV and"
  432.        "AUTOEXEC.NAV in the installation directory."
  433.        ""
  434.        "Choose No if you do not wish to make these"
  435.        "modifications at this time.  Please refer to"
  436.        "your documentation if you wish to make these"
  437.        "modifications at a later time."
  438.  
  439. ;**************************************************************************
  440. ;* This message is for when we detect NAV3 in the user's path.            *
  441. ;**************************************************************************
  442. [MessageNav3Running]
  443. caption = "Norton AntiVirus Already Running"
  444. "An application of Norton AntiVirus is currently running on your computer. "
  445. ""
  446. "Please press Alt-Tab to move to the application and close it. Then, using Alt-Tab again, come back to this screen and click OK."
  447.  
  448. ;**************************************************************************
  449. ;* This message is for when a User is trying to install to 95/NT          *
  450. ;**************************************************************************
  451. [MessageUse32Bit]
  452. caption = "Incompatible Windows Version"
  453. "This version of the Norton AntiVirus is for use with Windows 3.1"
  454. ""
  455. "Please install the 32-bit version of the scanner for this version of Windows."
  456.  
  457. ;**************************************************************************
  458. ;* This message is for when we can't locate the NETSCAPE.INI file         *
  459. ;**************************************************************************
  460. [MessageNoNetscapeIni]
  461. caption = "Updating NETSCAPE.INI"
  462. "The install program cannot find the NETSCAPE.INI file."
  463. ""
  464. "Norton AntiVirus cannot be used as a Netscape"
  465. "helper application unless the NETSCAPE.INI file is modified. If you want to install Norton AntiVirus Scanner as a Netscape helper application, reinstall Netscape, then install Norton AntiVirus again."
  466.  
  467.  
  468. ;**************************************************************************
  469. ;* This message is for when the user tries to overwrite NAV               *
  470. ;**************************************************************************
  471. [MessageOverwriteOldNAV]
  472. caption = "Overwrite Norton AntiVirus"
  473. "An earlier version of the Norton AntiVirus is installed in the directory you specified."
  474. ""
  475. "Do you want to install Norton AntiVirus 4.0 over this prior version?"
  476.  
  477. ;**************************************************************************
  478. ;* This message asks the user if we should update their Browser .INI file *
  479. ;**************************************************************************
  480. [MessageUpdateIni]
  481. caption = "Web Browser Helper Application Installation"
  482. "Click Yes to install Norton AntiVirus as a Netscape helper application."
  483. ""
  484. "Norton AntiVirus as a helper application automatically checks downloaded files for viruses before you save them to your local disk."
  485. ""
  486. "If you do not want to install Norton AntiVirus as a helper application, click No."
  487. ""
  488. "NOTE:  Whether or not you install Norton AntiVirus as a helper application, you can always use Norton AntiVirus to scan any file for viruses."
  489.  
  490. ; ********************************************************************
  491. ; Config.sys modifications
  492. ; ********************************************************************
  493.  
  494. [ModifyConfigSys]
  495. caption    = "Norton AntiVirus 4.0 -- Modify CONFIG.SYS File"
  496. text1      = "The following changes need to be made to your CONFIG.SYS file:"
  497. FileSpec   = C:\CONFIG.SYS
  498. FileType   = config
  499. Rem1       = "REM "
  500. FindRems   = 0
  501. EditCaption= "Edit CONFIG.SYS"
  502. EditError1 = "A problem was encountered preparing the new config.sys"
  503. EditError2 = " "
  504. EditError3 = "You should:"
  505. EditError4 = "1. Review the lines that need to be added"
  506. EditError5 = "2. Select the 'Save the required changes to new file's option"
  507. EditError6 = "3. Continue and complete the Install Process"
  508. EditError7 = "4. Make the changes to the config.sys file later"
  509. RemItems   = ConfigRemItems
  510. DelItems   = ConfigDelItems
  511. AddItems   =
  512.  
  513. [ConfigRemItems]
  514. *cloaking.exe*
  515. *nav_.sys*
  516. *nav&.sys*
  517.  
  518. [ConfigDelItems]
  519. *navtsr.exe*
  520.  
  521. [ModifyConfigSys2]
  522. caption    = "Norton AntiVirus 4.0 -- Modify CONFIG.SYS File"
  523. text1      = "The following changes need to be made to your CONFIG.SYS file:"
  524. FileSpec   = C:\CONFIG.SYS
  525. FileType   = config
  526. Rem1       = "REM "
  527. FindRems   = 0
  528. EditCaption= "Edit CONFIG.SYS"
  529. EditError1 = "A problem was encountered preparing the new config.sys"
  530. EditError2 = " "
  531. EditError3 = "You should:"
  532. EditError4 = "1. Review the lines that need to be added"
  533. EditError5 = "2. Select the 'Save the required changes to new file's option"
  534. EditError6 = "3. Continue and complete the Install Process"
  535. EditError7 = "4. Make the changes to the config.sys file later"
  536. RemItems   =
  537. DelItems   =
  538. AddItems   = ConfigAddItems2
  539.  
  540.  
  541. [ConfigAddItems2]
  542. ; "REM The following line is required by the Norton AntiVirus DOS TSR",PutMeAfterThis = RemNavAfterThis
  543. "device=%s\cloaking.exe",                           TARGET,PutMeAfterThis = NavAfterThis
  544. "device=%s\navtsr.exe",                             TARGET,PutMeAfterThis = NavAfterThis
  545.  
  546. [NavAfterThis]
  547. *emm386*
  548. *cloaking*
  549. *qemm*
  550. *himem*
  551. *rm386*
  552.  
  553. ; ********************************************************************
  554. ; Autoexec.bat modifications
  555. ; ********************************************************************
  556.  
  557. [ModifyAutoexec]
  558. caption    = "Norton AntiVirus 4.0 -- Modify AUTOEXEC.BAT File"
  559. text1      = "The following changes need to be made to your AUTOEXEC.BAT file:"
  560. FileSpec   = C:\AUTOEXEC.BAT
  561. FileType   = text
  562. Rem1       = "REM "
  563. FindRems   = 0
  564. EditCaption= "Edit AUTOEXEC.BAT"
  565. EditError1 = "A problem was encountered preparing the new autoexec.bat file"
  566. EditError2 = " "
  567. EditError3 = "You should:"
  568. EditError4 = "1. Review the lines that need to be added"
  569. EditError5 = "2. Select the 'Save the required changes to new file's option"
  570. EditError6 = "3. Continue and complete the Install Process"
  571. EditError7 = "4. Make the changes to the autoexec.bat file later"
  572. RemItems   = AutoexecRemItems
  573. DelItems   = AutoexecDelItems
  574. AddItems   = AutoexecAddItems
  575.  
  576. [AutoexecRemItems]
  577. *navtsr*
  578.  
  579. [AutoexecDelItems]
  580.  
  581. [AutoexecAddItems]
  582. ;"path=%s;%%path%%",                               TARGET, APPEND
  583.  
  584. ;**************************************************************************
  585. ;* Misc install information                                               *
  586. ;**************************************************************************
  587.  
  588. [DelLeftovers]
  589. siwadvo.dll,  WINDOWS
  590. q_sinst.dll, WINDOWS
  591. q_virscn.dll, WINDOWS
  592. virscan2.dat, WINDOWS
  593. virscan.dat, WINDOWS
  594. virscan.inf, WINDOWS
  595. siwvscan.dll, WINDOWS
  596. q_krnl.dll,  WINDOWS
  597. q_gui.dll,  WINDOWS
  598. q_util.dll, WINDOWS
  599. navex16.dll, WINDOWS
  600. inscanm.dat, WINDOWS
  601. inscanb.dat, WINDOWS
  602. inscanf.dat, WINDOWS
  603. siwgt16.dll, WINDOWS
  604. siwgt32.dll, WINDOWS
  605.  
  606. [DelSiwcust]
  607. siwcust.dll,  WINDOWS
  608.  
  609. [UpdWizardInfo]
  610. IniName=win.ini
  611. SectionName=NAV16
  612. BypassRepairWizard=0
  613.  
  614. [BackupConfigFiles]
  615. C:\CONFIG.SYS, CONFIG.NAV,,TARGET
  616. C:\AUTOEXEC.BAT, AUTOEXEC.NAV,,TARGET
  617.  
  618. ;**************************************************************************
  619. ;* User Registration                                                      *
  620. ;**************************************************************************
  621.  
  622. [Registration]
  623. caption =  "Norton AntiVirus -- Registration"
  624. text1   =  RegText
  625. text2   =  "&Name:"
  626. text3   =  "&Company:"
  627. Cancel  =  "Cancel"
  628. appname =  navopts.dat
  629. string  =  "Symantec Install for Windows"
  630. active  =  no
  631.  
  632. [RegText]
  633. ""
  634. ""
  635. "Please register your name and company before continuing:"
  636.  
  637. [RegNAVW]
  638. NAVW.EXE, TARGET
  639.  
  640. ;**************************************************************************
  641. ;* Target Selection Stuff                                                 *
  642. ;**************************************************************************
  643.  
  644. [InitTarget]
  645. location    = C:\NAV
  646. defaultdir  = C:\NAV
  647.  
  648. [SetupLocation]
  649. location = %s, TARGET
  650.  
  651. [BrowseNAVW]
  652. caption         = "Select Directory for Norton AntiVirus"
  653. reset           = TARGET
  654.  
  655. [CreateDirNAVW]
  656. %s,TARGET
  657.  
  658. [SIWModifyNetscapeIni]
  659. dll = siwcust.dll
  660. function = SIWModifyNetscapeIni
  661.  
  662. [SIWIsNetscapeInstalled]
  663. dll = siwcust.dll
  664. function = SIWIsNetscapeInstalled
  665.  
  666. [SIWGetExtensions]
  667. dll = siwcust.dll
  668. function = SIWGetExtensions
  669.  
  670. [SIWIsNavDir]
  671. dll = siwcust.dll
  672. function = SIWIsNavDir
  673.  
  674. [SIWTargetToFull]
  675. dll = siwcust.dll
  676. function = SIWTargetToFull
  677.  
  678. [SIWSetRegInfo]
  679. dll = siwcust.dll
  680. function = SIWSetRegInfo
  681.  
  682. [SIWModifyLiveUpdateIni]
  683. dll = siwcust.dll
  684. function = SIWModifyLiveUpdateIni
  685.  
  686. [IncreaseLiveUpdateCount]
  687. dll = siwcust.dll
  688. function =IncreaseLiveUpdateCount
  689.  
  690. [DecreaseLiveUpdateCount]
  691. dll = siwcust.dll
  692. function =DecreaseLiveUpdateCount
  693.  
  694. [SIWIsNav3Installed]
  695. dll = siwcust.dll
  696. function = SIWIsNav3Installed
  697.  
  698. [SIWIsNav3Running]
  699. dll = siwcust.dll
  700. function = SIWIsNav3Running
  701.  
  702. [SIWIsWin32]
  703. dll = siwcust.dll
  704. function = SIWIsWin32
  705.  
  706. [SetSystemTarget]
  707. dll = siwcust.dll
  708. function = SIWSetSystemTarget
  709.  
  710. [SpawnNotepad]
  711. dll = siwcust.dll
  712. function = SIWDisplayReadme
  713.  
  714. [SIWGetNavPath]
  715. dll = siwcust.dll
  716. function = SIWGetNavPath
  717.  
  718. [SIWAddNavToPath]
  719. dll = siwcust.dll
  720. function = SIWAddNavToPath
  721.  
  722. [HandleSYMEvnt]
  723. dll = siwcust.dll
  724. function = HandleSYMEvnt
  725.  
  726. [HandleRMLodHi]
  727. dll = siwcust.dll
  728. function = HandleRMLodHi
  729.  
  730. [WaitLoading]
  731. dll = siwcust.dll
  732. function = WaitLoading
  733.  
  734. [RemoveWaitLoading]
  735. dll = siwcust.dll
  736. function = RemoveWaitLoading
  737.  
  738. [SIWLoadSIWCustDLL]
  739. dll = siwcust.dll
  740. function = SIWLoadSIWCustDLL
  741.  
  742. [SIWFreeSIWCustDLL]
  743. dll = siwcust.dll
  744. function = SIWFreeSIWCustDLL
  745.  
  746. [SYMEVENT]
  747. IniName = system.ini
  748. SectionName = 386Enh
  749. device = "symevnt.386        ; Added by Norton AntiVirus 4.0 (may be used by other programs)"
  750.  
  751. [AutoProtect]
  752. IniName = win.ini
  753. SectionName = windows
  754. load = %s\navtsrw.exe, TARGET, insert
  755.  
  756. [AutomaticLiveUpdate]
  757. IniName = win.ini
  758. SectionName = NAV16
  759. AutomaticLiveUpdate=1
  760.  
  761. [AutomaticLiveUpdateNo]
  762. IniName = win.ini
  763. SectionName = NAV16
  764. AutomaticLiveUpdate=0
  765.  
  766. [DelOldSymevent]
  767. IniName = system.ini
  768. SectionName = 386Enh
  769. device = *symevnt.386*
  770.  
  771. [LaunchRescue]
  772. "%s\rescuew.exe /REGMSG", TARGET
  773.  
  774. ; The items below are for Virus Scanning during Install
  775.  
  776.                     ; This section is for the 'delete' command.  It deletes
  777.                     ; the files from the WINDOWS directory when the scan
  778.                     ; is done
  779. [delvirus]
  780. q_sinst.dll, WINDOWS
  781. q_virscn.dll, WINDOWS
  782. virscan.dat, WINDOWS
  783. virscan.inf, WINDOWS
  784. siwvscan.dll, WINDOWS
  785.  
  786.  
  787.                     ; This is the section referenced by the CallProc command.
  788.                     ; It tells the dll and function to call for the scan.
  789. [dovirus]
  790. dll = siwvscan.dll
  791. function = ScanForViruses
  792.  
  793.                     ; This section is used by the dll itself to get info
  794.                     ; about what type of scan to do, etc...
  795. [VirusScan]
  796. dllname = q_sinst.dll
  797. caption = "Virus Scan"
  798. scanboot = yes
  799. scanmem = yes
  800. scanfloppy = no
  801. scanfixed = no
  802. abortiffound = yes
  803. recommendtext = VirusFoundText  ; See next section
  804.  
  805. [VirusFoundText]
  806. "A virus was found on your system."
  807. "We recommend that you run NAV.EXE"
  808. "from the emergency disk before"
  809. "proceeding with install.  Please"
  810. "see the readme.txt file for more"
  811. "information."
  812.  
  813.  
  814.